adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / DateTimeHandling Class / TimeValue Method / TimeValue(Nullable<DateTime>) Method
is a null reference (Nothing in Visual Basic).


In This Topic
    TimeValue(Nullable<DateTime>) Method
    In This Topic
    Returns a DateTime containing only the time portion from the source value. The date portion is set to January 1,1900.
    Syntax
    'Declaration
     
    
    <PureAttribute()>
    Public Overloads Shared Function TimeValue( _
       ByVal value As Nullable(Of Date) _
    ) As Nullable(Of Date)
    [Pure()]
    public static Nullable<DateTime> TimeValue( 
       Nullable<DateTime> value
    )
    [Pure()]
    public:
    static Nullable<DateTime> TimeValue( 
       Nullable<DateTime> value
    ) 

    Parameters

    value
    is a null reference (Nothing in Visual Basic).

    Return Value

    The time value, or a null reference (Nothing in Visual Basic) if is a null reference (Nothing in Visual Basic).
    See Also